The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 26
META.yml 2731
Makefile.PL 03
Normalize.pm 11
Normalize.pmN 11
README 11
mkheader 00
7 files changed (This is a version diff) 3243
@@ -1,12 +1,16 @@
 Revision history for Perl extension Unicode::Normalize.
 
+1.13  Mon Jul 25 21:07:49 2011
+    - tried fixing the tarball with world writable files.
+      ( http://www.perlmonks.org/?node_id=731935 )
+
 1.12  Mon May 16 23:36:07 2011
-    - removed Normalize/CompExcl.pl and Composition Exclusions are coded;
+    - removed Normalize/CompExcl.pl and coded Composition Exclusions;
       how to load CompExcl.pl seems not good, but I'm not sure...
 
 1.11  Sun May 15 20:31:09 2011
     - As perl 5.14.0 has removed unicore/CompositionExclusions.txt
-      in the installation, Normalize/CompExcl.pl in this distribution
+      from the installation, Normalize/CompExcl.pl in this distribution
       is used instead. (see [rt.cpan.org #68106])
 
 1.10  Sun Jan 16 21:00:34 2011
@@ -1,27 +1,31 @@
----
-name: Unicode-Normalize
-abstract: Unicode Normalization Forms
-version: 1.12
-author: SADAHIRO Tomoyuki <SADAHIRO@cpan.org>
-license: perl
-distribution_type: module
-requires:
-  Carp: 0
-  DynaLoader: 0
-  Exporter: 0
-  File::Copy: 0
-  File::Spec: 0
-  Test: 0
-  bytes: 0
-  constant: 0
-  strict: 0
-  warnings: 0
-build_requires:
-  ExtUtils::MakeMaker: 0
-configure_requires:
-  ExtUtils::MakeMaker: 0
-dynamic_config: 0
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
-generated_by: 'ExtUtils::MakeMaker version 6.57_05'
+--- #YAML:1.0
+name:               Unicode-Normalize
+version:            1.13
+abstract:           Unicode Normalization Forms
+author:
+    - SADAHIRO Tomoyuki <SADAHIRO@cpan.org>
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    bytes:       0
+    Carp:        0
+    constant:    0
+    DynaLoader:  0
+    Exporter:    0
+    File::Copy:  0
+    File::Spec:  0
+    strict:      0
+    Test:        0
+    warnings:    0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.57_05
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4
@@ -12,7 +12,10 @@ if (-f "Normalize.xs") {
 }
 
 WriteMakefile(
+    'AUTHOR'		=> 'SADAHIRO Tomoyuki <SADAHIRO@cpan.org>',
+    'ABSTRACT'		=> 'Unicode Normalization Forms',
     'INSTALLDIRS'	=> $] >= 5.007002 ? 'perl' : 'site',
+    'LICENSE'		=> 'perl',
     'NAME'		=> 'Unicode::Normalize',
     'VERSION_FROM'	=> 'Normalize.pm', # finds $VERSION
     'clean'		=> $clean,
@@ -13,7 +13,7 @@ use Carp;
 
 no warnings 'utf8';
 
-our $VERSION = '1.12';
+our $VERSION = '1.13';
 our $PACKAGE = __PACKAGE__;
 
 our @EXPORT = qw( NFC NFD NFKC NFKD );
@@ -13,7 +13,7 @@ use Carp;
 
 no warnings 'utf8';
 
-our $VERSION = '1.12';
+our $VERSION = '1.13';
 our $PACKAGE = __PACKAGE__;
 
 our @EXPORT = qw( NFC NFD NFKC NFKD );
@@ -1,4 +1,4 @@
-Unicode/Normalize version 1.12
+Unicode/Normalize version 1.13
 ===================================
 
 Unicode::Normalize - Unicode Normalization Forms
diff --git a/var/tmp/source/SADAHIRO/Unicode-Normalize-1.12/Unicode-Normalize-1.12/mkheader b/var/tmp/source/SADAHIRO/Unicode-Normalize-1.13/Unicode-Normalize-1.13/mkheader
old mode 100644
new mode 100755